home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 5895
- ClientLeft = 2190
- ClientTop = 1575
- ClientWidth = 6690
- Height = 6315
- Left = 2130
- LinkTopic = "Form1"
- ScaleHeight = 5895
- ScaleWidth = 6690
- Top = 1215
- Width = 6810
- Begin VB.CommandButton Command2
- Caption = "Scramble"
- Enabled = 0 'False
- Height = 495
- Left = 1920
- TabIndex = 3
- Top = 960
- Width = 1215
- End
- Begin VB.CommandButton Command1
- Caption = "&Display"
- Default = -1 'True
- Height = 495
- Left = 360
- TabIndex = 2
- Top = 960
- Width = 1215
- End
- Begin VB.TextBox Text1
- Height = 495
- Left = 240
- TabIndex = 1
- Text = "Text1"
- Top = 240
- Width = 5655
- End
- Begin WebBitmapObjectsCtl.WebBitmap WebBitmap1
- Height = 3135
- Left = 600
- TabIndex = 0
- Top = 2280
- Width = 4935
- _ExtentX = 8705
- _ExtentY = 5530
- Bitmap = "http://ohserv/users/victors/smokes.bmp"
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- WebBitmap1.Bitmap = Text1.Text
- End Sub
- Private Sub Command2_Click()
- WebBitmap1.Scramble
- End Sub
- Private Sub Form_Load()
- Text1.Text = WebBitmap1.Bitmap
- End Sub
- Private Sub WebBitmap1_OnReadyStateChange(newState As Long)
- If (newState = 4) Then
- Command2.Enabled = True
- Else
- Command2.Enabled = False
- End If
-
- End Sub
-